home *** CD-ROM | disk | FTP | other *** search
/ American Osteopathic Ass…tion Yearbook 2005 & 2006 / American Osteopathic Association Yearbook 2005 & 2006.iso / mac / app / webapps / AOA05S1 / __init__.py next >
Encoding:
Python Source  |  2005-05-25  |  304 b   |  19 lines

  1. # configuration for this webapp
  2. import os
  3.  
  4. name="Web server root"
  5.  
  6. if os.name == "mac":
  7.     docroot=""
  8. else:
  9.     docroot = "."
  10. # start=
  11.  
  12. snakelets = {}
  13.  
  14. def dirListAllower(path):
  15.     # path will be RELATIVE for this webapp, and NOT starting with /
  16.  
  17.     # this (root)webapp allows ALL dirs to be viewed
  18.     return False
  19.